home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / system / danix201.zip / CHMOD.1 < prev    next >
Text File  |  1994-01-09  |  788b  |  31 lines

  1. CHMOD(1)            Danix Utilities                CHMOD(1)
  2.  
  3. NAME
  4.     chmod - change access modes for files
  5.  
  6. SYNOPSIS
  7.     chmod { +<modes> -<modes> | =<modes> } files ...
  8.  
  9. DESCRIPTION
  10.     chmod changes the modes of the specified files according to options
  11.     given.
  12.  
  13.     <modes> can contain any number of the following modes:
  14.         a - the archive bit of the file
  15.         s - file is a system file
  16.         h - file is a hidden file
  17.         r - file is read only
  18.  
  19.     +/- Set (+) and release (-) the given attributes for each file
  20.  
  21.     =   Set all attributes listed in <modes> list and release all others
  22.  
  23. EXAMPLES
  24.     chmod +r -h <files>
  25.         sets all files in <files> to read only and turns the hidden
  26.         attribute off
  27.     chmod =a <files>
  28.         sets the archive bit on each file in <files> and all other
  29.         attributes are turned off
  30.  
  31.